home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / flashpc.exe / DEMO.C < prev    next >
Text File  |  1993-03-25  |  17KB  |  448 lines

  1. #include <fpclib.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <conio.h>
  6.  
  7. #define NUMBER_WINDOWS 6
  8.  
  9. void OpeningScreen( void );
  10. void DisplayWindows( void );
  11. void GetAltCtrlShft( void );
  12. void DetectToggleKeys( void );
  13. void DisplayVideoInformation( void );
  14. void UseEditSt( void );
  15. void DisplayRvsAttrScreen( void );
  16. void CheckMouse( void );
  17. void IntStr( int Num, int NDigits, char *St );
  18.  
  19. char ColorTbl[2][256] = {
  20.                                0,  1,  2,  3,  4,  5,  6,  7,  8,  9,
  21.                               10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
  22.                               20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
  23.                               30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
  24.                               40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
  25.                               50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
  26.                               60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
  27.                               70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
  28.                               80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  29.                               90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
  30.                              100,101,102,103,104,105,106,107,108,109,
  31.                              110,111,112,113,114,115,116,117,118,119,
  32.                              120,121,122,123,124,125,126,127,128,129,
  33.                              130,131,132,133,134,135,136,137,138,139,
  34.                              140,141,142,143,144,145,146,147,148,149,
  35.                              150,151,152,153,154,155,156,157,158,159,
  36.                              160,161,162,163,164,165,166,167,168,169,
  37.                              170,171,172,173,174,175,176,177,178,179,
  38.                              180,181,182,183,184,185,186,187,188,189,
  39.                              190,191,192,193,194,195,196,197,198,199,
  40.                              200,201,202,203,204,205,206,207,208,209,
  41.                              210,211,212,213,214,215,216,217,218,219,
  42.                              220,221,222,223,224,225,226,227,228,229,
  43.                              230,231,232,233,234,235,236,237,238,239,
  44.                              240,241,242,243,244,245,246,247,248,249,
  45.                              250,251,252,253,254,255,
  46.  
  47.                                0,  1,  2,  3,  4,  5,  6,  7,  8,  9,
  48.                               10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
  49.                               20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
  50.                               30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
  51.                               40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
  52.                               50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
  53.                               60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
  54.                               70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
  55.                               80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  56.                               90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
  57.                              100,101,102,103,104,105,106,107,108,109,
  58.                              110,111,112,113,114,115,116,117,118,119,
  59.                              120,121,122,123,124,125,126,127,128,129,
  60.                              130,131,132,133,134,135,136,137,138,139,
  61.                              140,141,142,143,144,145,146,147,148,149,
  62.                              150,151,152,153,154,155,156,157,158,159,
  63.                              160,161,162,163,164,165,166,167,168,169,
  64.                              170,171,172,173,174,175,176,177,178,179,
  65.                              180,181,182,183,184,185,186,187,188,189,
  66.                              190,191,192,193,194,195,196,197,198,199,
  67.                              200,201,202,203,204,205,206,207,208,209,
  68.                              210,211,212,213,214,215,216,217,218,219,
  69.                              220,221,222,223,224,225,226,227,228,229,
  70.                              230,231,232,233,234,235,236,237,238,239,
  71.                              240,241,242,243,244,245,246,247,248,249,
  72.                              250,251,252,253,254,255
  73.                         };
  74.  
  75. char WinTbl[NUMBER_WINDOWS][5] = {
  76.                                     1,  1, 40, 10,  16,
  77.                                     4,  4, 43, 13,  36,
  78.                                     7,  7, 46, 16,  56,
  79.                                    10, 10, 49, 19,  76,
  80.                                    13, 13, 52, 21,  96,
  81.                                    16, 16, 55, 23, 116
  82.                                  };
  83.  
  84. char Digits[17] = "0123456789ABCDEF";
  85.  
  86. char TCSet[32] = {   0,   7,   0,   0,   0,   0,   0,   0,
  87.                      0,   0,   0,   0,   0,   0,   0,   0,
  88.                      0,   0,   0,   0,   0,   0,   0,   0,
  89.                      0,   0,   0,   0,   0,   0,   0,   0
  90.                  };
  91. char VCSet[32] = {   0,   0,   0,   0, 255, 255, 255, 255,
  92.                    255, 255, 255, 255, 255, 255, 255, 255,
  93.                    255, 255, 255, 255, 255, 255, 255, 255,
  94.                    255, 255, 255, 255, 255, 255, 255, 255
  95.                  };
  96.  
  97.  
  98. char  Buffer[4000],CTbl[256];
  99. int   i,x,y;
  100. char  FnKeyBuf[4][320];
  101.  
  102. /*----------------------------------------------------------------*/
  103. /*                                                                */
  104. /*----------------------------------------------------------------*/
  105.  
  106. void OpeningScreen( void )
  107. {
  108.    int i;
  109.  
  110.    ClrWin( 1, 1, 80, 25, CTbl[7] );
  111.    WindowFP( 1, 1, 80, 25 );
  112.    FrameWin( '╔', '╗', '╚', '╝', '═', '║', CTbl[2] );
  113.  
  114.    ColorMsg( 20,  4, CTbl[1], "            FlashPac C Library           " );
  115.    ColorMsg( 20,  6, CTbl[2], "               Version 3.10              " );
  116.    ColorMsg( 20,  8, CTbl[3], "               Demo Program              " );
  117.    ColorMsg( 20, 15, CTbl[4], "              SimpleSoft Inc.            " );
  118.    ColorMsg( 20, 16, CTbl[4], "              1209 Poplar St             " );
  119.    ColorMsg( 20, 17, CTbl[4], "          La Crescent, MN 55947          " );
  120.    ColorMsg( 20, 18, CTbl[4], "                                         " );
  121.    ColorMsg( 19, 22, CTbl[4], "(c) Copyright 1986-89 - All Rights Reserved");
  122.    ColorMsg( 20, 24, CTbl[5], "       Press any key to continue...      " );
  123.  
  124.    while ( !DosKbdHit() ) {
  125.       FillRowAttr( 20,  4, 41, CTbl[9]  );
  126.       FillRowAttr( 20,  6, 41, CTbl[10] );
  127.       FillRowAttr( 20,  8, 41, CTbl[11] );
  128.       FillRowAttr( 20, 15, 41, CTbl[12] );
  129.       FillRowAttr( 20, 16, 41, CTbl[12] );
  130.       FillRowAttr( 20, 17, 41, CTbl[12] );
  131.       FillRowAttr( 20, 18, 41, CTbl[12] );
  132.       FillRowAttr( 19, 22, 43, CTbl[13] );
  133.  
  134.       for ( i = 0; i < 10000; i++ )
  135.       ;
  136.  
  137.       FillRowAttr( 20,  4, 41, CTbl[1] );
  138.       FillRowAttr( 20,  6, 41, CTbl[2] );
  139.       FillRowAttr( 20,  8, 41, CTbl[3] );
  140.       FillRowAttr( 20, 15, 41, CTbl[4] );
  141.       FillRowAttr( 20, 16, 41, CTbl[4] );
  142.       FillRowAttr( 20, 17, 41, CTbl[4] );
  143.       FillRowAttr( 20, 18, 41, CTbl[4] );
  144.       FillRowAttr( 19, 22, 43, CTbl[5] );
  145.  
  146.       for ( i = 0; i < 10000; i++ )
  147.       ;
  148.    }
  149. }
  150.  
  151. /*----------------------------------------------------------------*/
  152. /*                                                                */
  153. /*----------------------------------------------------------------*/
  154.  
  155. void DisplayWindows( void )
  156. {
  157.    char  St[80];
  158.    int   i,j;
  159.  
  160.    ClrWin( 1, 1, 80, 25, CTbl[7] );
  161.  
  162.    for ( i = 0; i < NUMBER_WINDOWS; i++ ) {
  163.       WindowFP( WinTbl[i][0], WinTbl[i][1], WinTbl[i][2], WinTbl[i][3] );
  164.       ClrWin( WinTbl[i][0], WinTbl[i][1], WinTbl[i][2], WinTbl[i][3], WinTbl[i][4] );
  165.       FrameWin( '╔', '╗', '╚', '╝', '═', '║', CTbl[ WinTbl[i][4] ] );
  166.  
  167.       strcpy( St, "Window - " );
  168.       itoa( i, &St[9], 10 );
  169.       DspMsg( WinTbl[i][0]+2, WinTbl[i][1]+1, St );
  170.       for ( j = 0; j < 15000; j++ )
  171.       ;
  172.    }
  173.  
  174.    ColorMsg( 20, 25, CTbl[96], "       Press any key to continue...      " );
  175.    DosKbdClr();
  176.    GetKey();
  177. }
  178.  
  179. /*----------------------------------------------------------------*/
  180. /*                                                                */
  181. /*----------------------------------------------